home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Burning & Media / GB-PVR 1.2.13 / GBPVR10213.msi / Cabs.w1.cab / PhotoViewer.aspx.cs150 < prev    next >
Text File  |  2008-02-23  |  1KB  |  56 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. using System.Xml;
  13. using GBPVR.Public;
  14. using gbweb.classes;
  15.  
  16. namespace gbweb
  17. {
  18.     /// <summary>
  19.     /// Summary description for Search.
  20.     /// </summary>
  21.         public partial class PhotoViewer : System.Web.UI.Page
  22.         {
  23.  
  24.             protected void Page_Load(object sender, System.EventArgs e)
  25.             {
  26.                 Session["GuideStartTime"] = null;
  27.                 if (!IsPostBack)
  28.                 {
  29.                 }
  30.  
  31.             }
  32.  
  33.             #region Web Form Designer generated code
  34.             override protected void OnInit(EventArgs e)
  35.             {
  36.                 //
  37.                 // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  38.                 //
  39.                 InitializeComponent();
  40.                 base.OnInit(e);
  41.                 
  42.             }
  43.  
  44.             /// <summary>
  45.             /// Required method for Designer support - do not modify
  46.             /// the contents of this method with the code editor.
  47.             /// </summary>
  48.             private void InitializeComponent()
  49.             {
  50.  
  51.             }
  52.             #endregion
  53.  
  54.     }
  55. }
  56.